Expand agent-facing Executor configuration tools - #841
Merged
Conversation
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
executor-marketing | ea2df9f | Commit Preview URL Branch Preview URL |
May 20 2026, 12:19 AM |
Deploying with
|
| Status | Name | Latest Commit | Updated (UTC) |
|---|---|---|---|
| ✅ Deployment successful! View logs |
executor-cloud | ea2df9f | May 20 2026, 12:19 AM |
This was referenced May 17, 2026
@executor-js/cli
@executor-js/config
@executor-js/execution
@executor-js/sdk
@executor-js/codemode-core
@executor-js/runtime-quickjs
@executor-js/plugin-file-secrets
@executor-js/plugin-google-discovery
@executor-js/plugin-graphql
@executor-js/plugin-keychain
@executor-js/plugin-mcp
@executor-js/plugin-onepassword
@executor-js/plugin-openapi
executor
commit: |
RhysSullivan
force-pushed
the
dev-cli-daemon-scope
branch
from
May 17, 2026 05:29
953dd3c to
4a8ced1
Compare
RhysSullivan
force-pushed
the
core-tools-plugin
branch
3 times, most recently
from
May 17, 2026 06:39
08ead90 to
02ab416
Compare
RhysSullivan
force-pushed
the
dev-cli-daemon-scope
branch
2 times, most recently
from
May 19, 2026 01:39
dddf5f4 to
eb898c7
Compare
RhysSullivan
force-pushed
the
core-tools-plugin
branch
from
May 19, 2026 01:39
02ab416 to
f586acb
Compare
RhysSullivan
marked this pull request as draft
May 19, 2026 05:12
RhysSullivan
force-pushed
the
core-tools-plugin
branch
2 times, most recently
from
May 19, 2026 07:34
3881485 to
879bf93
Compare
RhysSullivan
marked this pull request as ready for review
May 20, 2026 00:03
RhysSullivan
force-pushed
the
dev-cli-daemon-scope
branch
from
May 20, 2026 00:15
eb898c7 to
ea5603f
Compare
RhysSullivan
force-pushed
the
core-tools-plugin
branch
from
May 20, 2026 00:15
dcdde22 to
7f1da76
Compare
Introduces `coreToolsPlugin` in @executor-js/sdk exposing three static
tools agents can call directly:
- `scopes.list` — enumerate visible scopes by name; agents pick a scope
by asking the user, not by guessing or defaulting.
- `secrets.list` — visible secrets as `{id, name, provider}`; values
never cross the agent boundary.
- `secrets.create` — pre-allocates a secret id and returns a URL to the
existing /secrets web form, pre-filled with name + id. The user enters
the value in the browser; the agent confirms by re-listing.
The plugin auto-registers when `coreTools: { webBaseUrl }` is set on
ExecutorConfig, so hosts opt in with one line. apps/local wires it to
the daemon's own port — same host as the API, no separate UI server.
The /secrets web side reads the prefill params via TanStack Router
`validateSearch`, opens the add modal pre-filled, and locks the id via
a new `initialIdOverride` prop on SecretForm. URL prefilling works
fully through the dev:cli vite proxy.
RhysSullivan
force-pushed
the
core-tools-plugin
branch
from
May 20, 2026 00:16
7f1da76 to
ea2df9f
Compare
RhysSullivan
added a commit
that referenced
this pull request
May 31, 2026
* feat(sdk): add built-in core-tools plugin with agent secret-create flow
Introduces `coreToolsPlugin` in @executor-js/sdk exposing three static
tools agents can call directly:
- `scopes.list` — enumerate visible scopes by name; agents pick a scope
by asking the user, not by guessing or defaulting.
- `secrets.list` — visible secrets as `{id, name, provider}`; values
never cross the agent boundary.
- `secrets.create` — pre-allocates a secret id and returns a URL to the
existing /secrets web form, pre-filled with name + id. The user enters
the value in the browser; the agent confirms by re-listing.
The plugin auto-registers when `coreTools: { webBaseUrl }` is set on
ExecutorConfig, so hosts opt in with one line. apps/local wires it to
the daemon's own port — same host as the API, no separate UI server.
The /secrets web side reads the prefill params via TanStack Router
`validateSearch`, opens the add modal pre-filled, and locks the id via
a new `initialIdOverride` prop on SecretForm. URL prefilling works
fully through the dev:cli vite proxy.
* fix(sdk): use typed core tools errors
* feat: expand agent executor configuration tools
* feat: expose source presets to agents
* fix: resolve agent source install scopes
* fix: clarify secret creation for agents
* fix: render open object schema previews
* fix: expose typed source configure tools
* fix: stabilize agent openapi preview flow
* fix: let secret handoff choose scope
* fix: explain secret handoff completion
* fix: explain oauth handoff completion
* fix: clarify oauth credential scope
* fix: satisfy core tools ci
* fix: clarify preset and resume guidance
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds the foundational agent-facing Executor configuration surface so sources, secrets, policies, connections, and first-party plugin setup flows can be driven through Executor tools.
Key changes:
executor.coreToolssurface for scopes, secrets, source configuration, credential bindings, policies, connections, and OAuth browser handoff.dev:cli mcp.apps/local/.executor-dev.Validation
bun run --cwd packages/core/sdk test -- src/executor.test.tsbun run --cwd apps/cli typecheckbunx oxfmt --check packages/core/sdk/src/core-tools.ts packages/core/sdk/src/executor.test.ts apps/cli/src/main.tsNotes
This PR is draft because it intentionally groups the foundational core tools and several provider flow descriptions; it likely still needs review for stack splitting and final UX decisions around source credential bindings.
Stack